[index]
Params Function
Syntax: the params or params()
Description
The params function returns the line of script used to call the current handler. If string or numeric expressions were passed, params evaluates them before returning the line.
The params function is useful for debugging; type the params in the Evaluation field of the script debugger to view the actual values passed into the current handler.
Examples
on mouseUp
paramtest "A", "B", "C"
end mouseUp
on paramtest p1, p2, p3
put the params into message
end paramtest
Return to Browse mode and click on the "Param" button. The line
paramtest "A", "B", "C"
This text has been mechanically extracted from the Oracle Media Objects 1.0.4.9 MediaTalk Reference, © 1995 Oracle Corporation, and is provided here solely for educational/historical purposes.